home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_201 / draco / drinc / graphics / text.g < prev    next >
Text File  |  1992-05-06  |  1KB  |  61 lines

  1. ushort
  2. „FS_NORMAL‹=0,
  3. „FSB_EXTENDEDˆ=3,
  4. „FSF_EXTENDEDˆ=1<<3,
  5. „FSB_ITALICŠ=2,
  6. „FSF_ITALICŠ=1<<2,
  7. „FSB_BOLDŒ=1,
  8. „FSF_BOLDŒ=1<<1,
  9. „FSB_UNDERLINED†=0,
  10. „FSF_UNDERLINED†=1<<0,
  11.  
  12. „FPB_ROMFONT‰=0,
  13. „FPF_ROMFONT‰=1<<0,
  14. „FPB_DISKFONTˆ=1,
  15. „FPF_DISKFONTˆ=1<<1,
  16. „FPB_REVPATH‰=2,
  17. „FPF_REVPATH‰=1<<2,
  18. „FPB_TALLDOT‰=3,
  19. „FPF_TALLDOT‰=1<<3,
  20. „FPB_WIDEDOT‰=4,
  21. „FPF_WIDEDOT‰=1<<4,
  22. „FPB_PROPORTIONAL„=5,
  23. „FPF_PROPORTIONAL„=1<<5,
  24. „FPB_DESIGNEDˆ=6,
  25. „FPF_DESIGNEDˆ=1<<6,
  26. „FPB_REMOVED‰=7,
  27. „FPF_REMOVED‰=1<<7;
  28.  
  29. type
  30. „Message_t=unknown20,
  31.  
  32. „TextAttr_t=struct{
  33. ˆ*charta_name;
  34. ˆuintta_YSize;
  35. ˆushortta_Style;
  36. ˆushortta_Flags;
  37. „},
  38.  
  39. „TextFont_t=struct{
  40. ˆMessage_ttf_Message;
  41. ˆuinttf_YSize;
  42. ˆushorttf_Style,tf_Flags;
  43. ˆuinttf_XSize,tf_Baseline,tf_BoldSmear;
  44. ˆuinttf_Accessors;
  45. ˆchartf_LoChar,tf_HiChar;
  46. ˆ*bytetf_CharData;
  47. ˆuinttf_Modulo;
  48. ˆ*bytetf_CharLoc;
  49. ˆ*bytetf_CharSpace;
  50. ˆ*bytetf_CharKern;
  51. „};
  52.  
  53. extern
  54. „AddFont(*TextFont_tfont)void,
  55. „AskFont(*RastPort_trp;*TextAttr_tta)void,
  56. „AskSoftStyle(*RastPort_trp)uint,
  57. „CloseFont(*TextFont_tf)void,
  58. „OpenFont(*TextAttr_ttextAttr)*TextFont_t,
  59. „RemFont(*TextFont_ttextFont)void,
  60. „SetSoftStyle(*RastPort_trp;ulongstyle,enable)ulong;
  61.